home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / misc-part1 / 9085 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.6 KB  |  66 lines

  1. Newsgroups: comp.sys.amiga.misc
  2. Path: in1.uu.net!iglou!jasnider
  3. From: jasnider@iglou.iglou.com (Jill A. Snider)
  4. Subject: Re: How to set up messydos?
  5. X-Nntp-Posting-Host: iglou
  6. Message-ID: <DoM5ow.7r@iglou.com>
  7. Sender: news@iglou.com (News Administrator)
  8. Organization: IgLou Internet Services (1-800-436-4456)
  9. References: <31492963.21991036@news.alt.net>
  10. Date: Thu, 21 Mar 1996 10:41:20 GMT
  11.  
  12. et@crl.com (Ed Tannenbaum) writes:
  13.  
  14. >I upgraded my system to a 3000 and lost my setup for messydos device
  15. >driver. Can't find the docs. Can anone help. It's been a couple of
  16. >years since I used the system and I can't remember much. HELP!!
  17. >Thanks,
  18. >E.T.
  19.  
  20. Copy MessyFileSystem to L: , copy messydisk.device to DEVS: .  Add 
  21. something like the following to your MountList:
  22.  
  23. /*  For the IBM emulator IBeM (for 68020 and up) and IBeM000 */ 
  24. /* Sets up internal drive as IBMA:, external drive as IBMB:  */ 
  25. /* 720K IBM-type drives. NOTE: Each must be MOUNTed before use */ 
  26.  
  27. IBMA: 
  28.    FileSystem = L:MessyFileSystem
  29.    Device = devs:messydisk.device
  30.    Unit = 0
  31.    Flags = 0
  32.    LowCyl = 0 ; HighCyl = 79
  33.    Reserved = 0
  34.    Surfaces = 2
  35.    BlocksPerTrack = 9
  36.    Buffers = 5
  37.    DosType = 3
  38.    BufMemType = 1
  39.    StackSize = 4096
  40.    Priority = 5
  41.    Globvec = -1 
  42. #
  43.  
  44. IBMB: 
  45.    FileSystem = L:MessyFileSystem
  46.    Device = devs:messydisk.device
  47.    Unit = 2
  48.    Flags = 0
  49.    LowCyl = 0 ; HighCyl = 79
  50.    Reserved = 0
  51.    Surfaces = 2
  52.    BlocksPerTrack = 9
  53.    Buffers = 5
  54.    DosType = 3
  55.    BufMemType = 1
  56.    StackSize = 4096
  57.    Priority = 5
  58.    Globvec = -1
  59. #
  60.  
  61. Also, you might want to put MessyFormat somewhere you can find it.
  62. Good Luck!
  63.  
  64. -- 
  65.  
  66.